home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000159_news@columbia.edu _Wed Oct 6 09:54:24 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA16972
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 6 Oct 1999 09:54:24 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA18582
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 6 Oct 1999 09:40:59 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Help with data transfer. Xenix - SCO Openserver
  11. Date: 6 Oct 1999 13:40:58 GMT
  12. Organization: Columbia University
  13. Message-ID: <7tfjha$i4j$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <37fb2d5f.119086790@news.supernews.com>,
  17. goldstar@starwon.com.au <RickI> wrote:
  18. : Craig Norborg <doc@datacruz.com> wrote:
  19. : >    I have an old Xenix server that I need to get some data off of
  20. : >and transfer it to a new SCO Unix system.  The problem is, the old
  21. : >Xenix system has absolutely no documentation and I'm somewhat stumped.
  22. : >
  23. : >I am trying to hook them up via serial port to transfer between the
  24. : >two systems, but am having problems using "cu" and setting it up so
  25. : >that "getty" runs so I can log in from one system to the other, but
  26. : >even then maybe there is a better way to do this, so I'm open to
  27. : >suggestions.
  28. : >
  29. : Man, been there and done that !
  30. : Just get Kermit stuff -binaries for both OS's are available from Columbia.
  31. : Frank Da Cruz posted some simple notes on how to get it happening, which I
  32. : will send to you if you like.
  33. : Unless you're a masochist, forget uucp.
  34. UUCP requires all sorts of arcane setup and configuration; doing this on
  35. old platforms might be especially difficult.  You can get files moving
  36. with Kermit without doing any system configuration at all.  Install the
  37. appropriate Kermit binary on each computer, give it the needed user, group,
  38. and permissions to access the serial port and lockfile directory, connect
  39. the two computers with a null modem cable (or two modem cables that meet
  40. at a modem eliminator).  In the first scenario, let's assume that neither
  41. PC is set up for logins on a serial port, and you don't want to bother with
  42. (or know how to) set up getty, etc.  On computer A:
  43.  
  44.   set modem type none
  45.   set line /dev/tty0a   ; or whatever it is
  46.   set speed 19200       ; or other
  47.   set flow xon/xoff     ; (because RTS/CTS not available on Xenix)
  48.   server                ; enter server mode
  49.  
  50. On computer B:
  51.  
  52.   set modem type none
  53.   set line /dev/tty0a   ; or whatever it is
  54.   set speed 19200       ; or other (same as on computer A)
  55.   set flow xon/xoff
  56.  
  57. Now on computer B you can give REMOTE CD, REMOTE DIR, SEND, GET, and many
  58. other commands for file transfer and management.
  59.  
  60. In the second scenario, computer B has a getty on one of its serial ports
  61. and can be logged in to.  In this case you can do everything from Computer A:
  62.  
  63.   set modem type none
  64.   set line /dev/tty0a   ; or whatever it is
  65.   set speed 19200       ; or other
  66.   set flow xon/xoff
  67.   connect               ; Enter terminal mode
  68.  
  69. Here you log in to Computer B, start Kermit there, put it in server mode,
  70. "escape back" with <Ctrl-\>C, and continue as in the first scenario.
  71.  
  72. C-Kermit 7.0 is in the late stages of Beta testing, I'd recommend you start
  73. there:
  74.  
  75.   http://www.columbia.edu/kermit/ck70.html
  76.  
  77. - Frank